home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #2 / Monster Media No. 2 (Monster Media)(1994).ISO / pcboard / alf_nup.zip / NUP.PPE (.txt) < prev   
PCBoard Programming Language Executable  |  1994-05-16  |  1KB  |  105 lines

  1. ;------------------------------------------------------------------------------
  2. ;                                                   .ss.
  3. ;                                                   `²²'
  4. ;             .,sS$Ss,,s$  .,sS$$$Ss.  .,sS$Ss,,s$ .ss.  .sSs.
  5. ;           .d$$²^°²$$$$'.d$P²°^^²$P'.d$$²^°²$$$$'.$$$' .$$$²Sb,.
  6. ;           $$$'   .$$$' $$$²Sçsµ²' .$$$'   .$$$'.$$$' .$$$'  `$$b.
  7. ;           $$$b,,d$$$' ,$$$b,....,s$$$$b,,d$$$'.$$$;.,$$$'    ;$$$
  8. ;           `²S$$S²²S$$S²°²S$$$$S²°°²S$$$$$$',$$S²°²S$S'.sS$$$P²'
  9. ;                                    .sS²°$$$²²°"'       d²°'
  10. ;                                  .$$²  .$$'
  11. ;                                  $$$.,d$$'
  12. ;                                  `²S$$S²'
  13. ;------------------------------------------------------------------------------
  14. ; P.P.L.X. 2.OO                          (C)1996 - Lone Runner / AEGiS CoRP'96 
  15. ;------------------------------------------------------------------------------
  16. ; PPE 2.OO (plain) - Analysis ON - Postprocessing ON
  17. ;------------------------------------------------------------------------------
  18.  
  19.     Integer  INTEGER001
  20.     String   STRING001
  21.     String   STRING002
  22.     String   STRING003
  23.     String   STRING004
  24.  
  25. ;------------------------------------------------------------------------------
  26.  
  27.     INTEGER001 = 0
  28.     :LABEL001
  29.     INTEGER001 = INTEGER001 + 1
  30.     Cls
  31.     STRING001 = ReadLine(PPEPath() + "NUP.CNF", 2)
  32.     STRING004 = ReadLine(PPEPath() + "NUP.CNF", 3)
  33.     STRING003 = ReadLine(PPEPath() + "NUP.CNF", 4)
  34.     DispFile PPEPath() + "NUP", 1
  35.     InputStr STRING004 + "@X08", STRING002, 14, 15, Mask_Ascii(), 2 + 128 + 8 + 256
  36.     If (STRING002 == STRING001) Then
  37.         PrintLn "@X04Correct!"
  38.         PrintLn "@X08NUP by Jim Jones [@X03Alf@X08]"
  39.         PrintLn "@X08Registered To : @X04" + STRING003
  40.         PrintLn ""
  41.         PrintLn "@MORE@"
  42.         Goto LABEL002
  43.     Else
  44.         Select Case (INTEGER001)
  45.             Case 1
  46.                 Goto LABEL001
  47.             Case 2
  48.                 Goto LABEL001
  49.             Case 3
  50.                 PrintLn "@X08NUP by Jim Jones [@X03Alf@X08]"
  51.                 PrintLn "@X08Registered To : @X04" + STRING003
  52.                 Hangup
  53.             Endif
  54.     End Select
  55.     :LABEL002
  56.     End
  57.  
  58. ;------------------------------------------------------------------------------
  59. ;
  60. ; Usage report (before postprocessing)
  61. ;
  62. ; ■ Statements used :
  63. ;
  64. ;    1       End
  65. ;    1       Cls
  66. ;    11      Goto 
  67. ;    5       Let 
  68. ;    7       PrintLn 
  69. ;    4       If 
  70. ;    1       DispFile 
  71. ;    1       Hangup
  72. ;    1       InputStr 
  73. ;
  74. ;
  75. ; ■ Functions used :
  76. ;
  77. ;    11      +
  78. ;    4       ==
  79. ;    4       !
  80. ;    1       Mask_Ascii()
  81. ;    4       PPEPath()
  82. ;    3       ReadLine()
  83. ;
  84. ;------------------------------------------------------------------------------
  85. ;
  86. ; Analysis flags : B
  87. ;
  88. ; B - Brute hangup ■ 1
  89. ;     Program hangup without notification. This may be a good way to
  90. ;     disconnect a user, but if used randomly, may be very nasty
  91. ;     ■ Search for : HANGUP, DTROFF
  92. ;
  93. ;------------------------------------------------------------------------------
  94. ;
  95. ; Postprocessing report
  96. ;
  97. ;    0       For/Next
  98. ;    0       While/EndWhile
  99. ;    1       If/Then or If/Then/Else
  100. ;    1       Select Case
  101. ;
  102. ;------------------------------------------------------------------------------
  103. ;                 AEGiS Corp - Break the routines, code against the machines!
  104. ;------------------------------------------------------------------------------
  105.